home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / Gtk2 / CodeGen.pm next >
Text File  |  2009-05-17  |  15KB  |  438 lines

  1. package Gtk2::CodeGen;
  2.  
  3. use strict;
  4. use warnings;
  5. use Carp;
  6. use IO::File;
  7. use base 'Glib::CodeGen';
  8.  
  9. our $VERSION = '0.03';
  10.  
  11.  
  12. Glib::CodeGen->add_type_handler (GtkObject => \&gen_gtkobject_stuff);
  13.  
  14. Glib::CodeGen->add_type_handler (GEnumAlias => \&gen_fundamental_alias_stuff);
  15. Glib::CodeGen->add_type_handler (GFlagsAlias => \&gen_fundamental_alias_stuff);
  16. Glib::CodeGen->add_type_handler (GBoxedAlias => \&gen_boxed_alias_stuff);
  17. Glib::CodeGen->add_type_handler (GObjectAlias => \&gen_object_alias_stuff);
  18. Glib::CodeGen->add_type_handler (GInterfaceAlias => \&gen_object_alias_stuff);
  19.  
  20.  
  21. =head1 NAME
  22.  
  23. Gtk2::CodeGen - code generation utilities for Glib-based bindings.
  24.  
  25. =head1 SYNOPSIS
  26.  
  27.  # usually in Makefile.PL
  28.  use Gtk2::CodeGen;
  29.  
  30.  # most common, use all defaults
  31.  Gtk2::CodeGen->parse_maps ('myprefix');
  32.  Gtk2::CodeGen->write_boot;
  33.  
  34.  # more exotic, change everything
  35.  Gtk2::CodeGen->parse_maps ('foo',
  36.                             input => 'foo.maps',
  37.                             header => 'foo-autogen.h',
  38.                             typemap => 'foo.typemap',
  39.                             register => 'register-foo.xsh');
  40.  Gtk2::CodeGen->write_boot (filename => 'bootfoo.xsh',
  41.                             glob => 'Foo*.xs',
  42.                             ignore => '^(Foo|Foo::Bar)$');
  43.  
  44. =head1 DESCRIPTION
  45.  
  46. This module packages some of the boilerplate code needed for performing code
  47. generation typically used by perl bindings for gobject-based libraries, using
  48. the Glib module as a base.
  49.  
  50. The default output filenames are in the subdirectory 'build', which usually
  51. will be present if you are using ExtUtils::Depends (as most Glib-based
  52. extensions probably should).
  53.  
  54. =head2 METHODS
  55.  
  56. =over
  57.  
  58. =item Gtk2::CodeGen->write_boot;
  59.  
  60. =item Gtk2::CodeGen->write_boot (KEY => VAL, ...)
  61.  
  62. Many GObject-based libraries to be bound to perl will be too large to put in
  63. a single XS file; however, a single PM file typically only bootstraps one
  64. XS file's code.  C<write_boot> generates an XSH file to be included from
  65. the BOOT section of that one bootstrapped module, calling the boot code for
  66. all the other XS files in the project.
  67.  
  68. Options are passed to the function in a set of key/val pairs, and all options
  69. may default.
  70.  
  71.   filename     the name of the output file to be created.
  72.                the default is 'build/boot.xsh'.
  73.  
  74.   glob         a glob pattern that specifies the names of
  75.                the xs files to scan for MODULE lines.
  76.                the default is 'xs/*.xs'.
  77.  
  78.   xs_files     use this to supply an explicit list of file
  79.                names (as an array reference) to use instead
  80.                of a glob pattern.  the default is to use
  81.                the glob pattern.
  82.  
  83.   ignore       regular expression matching any and all 
  84.                module names which should be ignored, i.e.
  85.                NOT included in the list of symbols to boot.
  86.                this parameter is extremely important for
  87.                avoiding infinite loops at startup; see the
  88.                discussion for an explanation and rationale.
  89.                the default is '^[^:]+$', or, any name that
  90.                contains no colons, i.e., any toplevel
  91.                package name.
  92.  
  93.  
  94. This function performs a glob (using perl's builtin glob operator) on the
  95. pattern specified by the 'glob' option to retrieve a list of file names.
  96. It then scans each file in that list for lines matching the pattern
  97. "^MODULE" -- that is, the MODULE directive in an XS file.  The module
  98. name is pulled out and matched against the regular expression specified
  99. by the ignore parameter.  If this module is not to be ignored, we next
  100. check to see if the name has been seen.  If not, the name will be converted
  101. to a boot symbol (basically, s/:/_/ and prepend "boot_") and this symbol
  102. will be added to a call to GPERL_CALL_BOOT in the generated file; it is then
  103. marked as seen so we don't call it again.
  104.  
  105.  
  106. What is this all about, you ask?  In order to bind an XSub to perl, the C
  107. function must be registered with the interpreter.  This is the function of the
  108. "boot" code, which is typically called in the bootstrapping process.  However,
  109. when multiple XS files are used with only one PM file, some other mechanism
  110. must call the boot code from each XS file before any of the function therein
  111. will be available.
  112.  
  113. A typical setup for a multiple-XS, single-PM module will be to call the 
  114. various bits of boot code from the BOOT: section of the toplevel module's
  115. XS file.
  116.  
  117. To use Gtk2 as an example, when you do 'use Gtk2', Gtk2.pm calls bootstrap
  118. on Gtk2, which calls the C function boot_Gtk2.  This function calls the
  119. boot symbols for all the other xs files in the module.  The distinction
  120. is that the toplevel module, Gtk2, has no colons in its name.
  121.  
  122.  
  123. C<xsubpp> generates the boot function's name by replacing the 
  124. colons in the MODULE name with underscores and prepending "boot_".
  125. We need to be careful not to include the boot code for the bootstrapped module,
  126. (say Toplevel, or Gtk2, or whatever) because the bootstrap code in 
  127. Toplevel.pm will call boot_Toplevel when loaded, and boot_Toplevel
  128. should actually include the file we are creating here.
  129.  
  130. The default value for the ignore parameter ignores any name not containing
  131. colons, because it is assumed that this will be a toplevel module, and any
  132. other packages/modules it boots will be I<below> this namespace, i.e., they
  133. will contain colons.  This assumption holds true for Gtk2 and Gnome2, but
  134. obviously fails for something like Gnome2::Canvas.  To boot that module
  135. properly, you must use a regular expression such as "^Gnome2::Canvas$".
  136.  
  137. Note that you can, of course, match more than just one name, e.g.
  138. "^(Foo|Foo::Bar)$", if you wanted to have Foo::Bar be included in the same
  139. dynamically loaded object but only be booted when absolutely necessary.
  140. (If you get that to work, more power to you.)
  141.  
  142. Also, since this code scans for ^MODULE, you must comment the MODULE section
  143. out with leading # marks if you want to hide it from C<write_boot>.
  144.  
  145. =cut
  146.  
  147. # sub write_boot is inherited from Glib::CodeGen.
  148.  
  149.  
  150. =item Gtk2::CodeGen->parse_maps (PREFIX, [KEY => VAL, ...])
  151.  
  152. Convention within Glib/Gtk2 and friends is to use preprocessor macros in the
  153. style of SvMyType and newSVMyType to get values in and out of perl, and to
  154. use those same macros from both hand-written code as well as the typemaps.
  155. However, if you have a lot of types in your library (such as the nearly 200
  156. types in Gtk+ 2.x), then writing those macros becomes incredibly tedious, 
  157. especially so when you factor in all of the variants and such.
  158.  
  159. So, this function can turn a flat file containing terse descriptions of the
  160. types into a header containing all the cast macros, a typemap file using them,
  161. and an XSH file containing the proper code to register each of those types
  162. (to be included by your module's BOOT code).
  163.  
  164. The I<PREFIX> is mandatory, and is used in some of the resulting filenames,
  165. You can also override the defaults by providing key=>val pairs:
  166.  
  167.   input    input file name.  default is 'maps'.  if this
  168.            key's value is an array reference, all the
  169.            filenames in the array will be scanned.
  170.   header   name of the header file to create, default is
  171.            build/$prefix-autogen.h
  172.   typemap  name of the typemap file to create, default is
  173.            build/$prefix.typemap
  174.   register name of the xsh file to contain all of the 
  175.            type registrations, default is build/register.xsh
  176.  
  177. the maps file is a table of type descriptions, one per line, with fields
  178. separated by whitespace.  the fields should be:
  179.  
  180.   TYPE macro    e.g., GTK_TYPE_WIDGET 
  181.   class name    e.g. GtkWidget, name of the C type
  182.   base type     one of GObject, GBoxed, GEnum, GFlags.
  183.                 GtkObject is also supported, but the
  184.                 distinction is no longer necessary as
  185.                 of Glib 0.26.
  186.   package       name of the perl package to which this
  187.                 class name should be mapped, e.g.
  188.                 Gtk2::Widget
  189.  
  190. As a special case, you can also use this same format to register error
  191. domains; in this case two of the four columns take on slightly different
  192. meanings:
  193.  
  194.   domain macro     e.g., GDK_PIXBUF_ERROR
  195.   enum type macro  e.g., GDK_TYPE_PIXBUF_ERROR
  196.   base type        GError
  197.   package          name of the Perl package to which this
  198.                    class name should be mapped, e.g.,
  199.                    Gtk2::Gdk::Pixbuf::Error.
  200.  
  201. =cut
  202.  
  203.  
  204. # sub parse_maps is inherited from Glib::CodeGen.
  205.  
  206.  
  207. #
  208. # GtkObject has different reference-counting semantics than GObject;
  209. # in particular, the _noinc variant is meaningless for GtkObjects,
  210. # as the bindings register gtk_object_sink().
  211. #
  212.  
  213. sub gen_gtkobject_stuff {
  214.     my ($typemacro, $classname, $root, $package) = @_;
  215.  
  216.     Glib::CodeGen::add_typemap "$classname *", "T_GPERL_GENERIC_WRAPPER";
  217.     Glib::CodeGen::add_typemap "const $classname *", "T_GPERL_GENERIC_WRAPPER";
  218.     Glib::CodeGen::add_typemap "$classname\_ornull *", "T_GPERL_GENERIC_WRAPPER";
  219.     Glib::CodeGen::add_typemap "const $classname\_ornull *", "T_GPERL_GENERIC_WRAPPER";
  220.     Glib::CodeGen::add_register "#ifdef $typemacro
  221. gperl_register_object ($typemacro, \"$package\");
  222. #endif /* $typemacro */";
  223.  
  224.     my $get_wrapper = 'gtk2perl_new_gtkobject (GTK_OBJECT (val))';
  225.     Glib::CodeGen::add_header "#ifdef $typemacro
  226.   /* $root derivative $classname */
  227. # define Sv$classname(sv)    (($classname*)gperl_get_object_check (sv, $typemacro))
  228. # define newSV$classname(val)    ($get_wrapper)
  229.   typedef $classname $classname\_ornull;
  230. # define Sv$classname\_ornull(sv)    (gperl_sv_is_defined (sv) ? Sv$classname(sv) : NULL)
  231. # define newSV$classname\_ornull(val)    (((val) == NULL) ? &PL_sv_undef : $get_wrapper)
  232. #endif /* $typemacro */
  233. ";
  234. }
  235.  
  236. sub gen_alias_stuff {
  237.     my ($typemacro, $func, $package) = @_;
  238.     Glib::CodeGen::add_register "#ifdef $typemacro
  239. $func ($typemacro, \"$package\");
  240. #endif /* $typemacro */";
  241. }
  242.  
  243. sub gen_fundamental_alias_stuff {
  244.     my ($typemacro, $classname, $root, $package) = @_;
  245.     gen_alias_stuff ($typemacro, 'gperl_register_fundamental_alias', $package);
  246. }
  247.  
  248. sub gen_boxed_alias_stuff {
  249.     my ($typemacro, $classname, $root, $package) = @_;
  250.     gen_alias_stuff ($typemacro, 'gperl_register_boxed_alias', $package);
  251. }
  252.  
  253. sub gen_object_alias_stuff {
  254.     my ($typemacro, $classname, $root, $package) = @_;
  255.     gen_alias_stuff ($typemacro, 'gperl_register_object_alias', $package);
  256. }
  257.  
  258.  
  259. =item Gtk2::CodeGen->generate_constants_wrappers (KEY => VAL, ...)
  260.  
  261. Generates an XS file with XSUB wrappers for C constants.  The key-value pairs
  262. may contain one or more of the following keys:
  263.  
  264. =over
  265.  
  266. =item I<prefix>: Specifies the package name the functions should be put into.
  267.  
  268. =item I<lists>: Reference to an array of filenames which specify the constants
  269. that should be wrapped.
  270.  
  271. =item I<xs_file>: The name of the XS file that should be created.
  272.  
  273. =item I<header>: The name of the header file that should be included in the
  274. generated XS file.
  275.  
  276. =item I<export_tag>: The name of the L<Exporter> tag that should be used for
  277. the constants wrappers.
  278.  
  279. =back
  280.  
  281. All of the keys have mostly sane defaults.
  282.  
  283. Don't forget to add the generated XS file to the list of XS files to be
  284. compiled.
  285.  
  286. The lists describing the constants to be wrapped should have the following
  287. format:
  288.  
  289.   CONSTANT_NAME [ \t+ CONSTANT_CONVERTER ]
  290.  
  291. That is, the constant's name optionally followed by a tab and the converter
  292. that is to be used to convert the constant to a Perl scalar.  If
  293. CONSTANT_CONVERTER is a simple string like 'newSViv' it will be used as follows
  294. to get a Perl scalar: CONSTANT_CONVERTER (CONSTANT_NAME).  If it contains
  295. '$var', as in 'newSVpv ($var, PL_na)', then '$var' will be replaced with
  296. CONSTANT_NAME and the resulting string will be used for conversion.
  297.  
  298. The default for CONSTANT_CONVERTER is 'newSViv'.
  299.  
  300. =cut
  301.  
  302. sub generate_constants_wrappers {
  303.     my $class = shift @_;
  304.  
  305.     require File::Spec;
  306.     my %options = (
  307.         prefix => 'Glib',
  308.         lists => ['constants'],
  309.         xs_file => File::Spec->catfile ('build', 'constants.xs'),
  310.         header => 'gperl.h',
  311.         export_tag => 'constants',
  312.         @_,
  313.     );
  314.  
  315.     my $xsub_code = '';
  316.     my @constants = ();
  317.     foreach my $list (@{ $options{lists} }) {
  318.         open my $list_fh, '<', $list
  319.             or croak "Unable to open `$list┬┤ for reading: $!";
  320.  
  321.         DESCRIPTION:
  322.         while (my $description = <$list_fh>) {
  323.             chomp $description;
  324.  
  325.             # skip comments and blanks
  326.             next DESCRIPTION if $description =~ m/\A#|\A\s*\z/;
  327.  
  328.             my ($constant, $converter) = split /\t+/, $description;
  329.             push @constants, [$constant, $converter];
  330.         }
  331.  
  332.         close $list_fh
  333.             or croak "Unable to close `$list┬┤: $!";
  334.     }
  335.  
  336.     my $boot_code = <<"__EOD__";
  337. {
  338.     HV *stash = gv_stashpv ("$options{prefix}", TRUE); /* create if needed */
  339.     HV *tags_hv = get_hv ("$options{prefix}::EXPORT_TAGS", 1);
  340.     AV *constants_av = NULL;
  341.     SV *constants_ref_sv = NULL;
  342.     SV **constants_svp = hv_fetch (tags_hv, "$options{export_tag}", strlen ("$options{export_tag}"), 0);
  343.     if (constants_svp && gperl_sv_is_array_ref (*constants_svp)) {
  344.         constants_av = (AV *) SvRV (*constants_svp);
  345.         constants_ref_sv = *constants_svp;
  346.     } else {
  347.         constants_av = newAV ();
  348.         constants_ref_sv = newRV_noinc ((SV *) constants_av);
  349.     }
  350. __EOD__
  351.  
  352.     foreach my $pair (@constants) {
  353.         my ($constant, $converter) = @$pair;
  354.  
  355.         # default to ints
  356.         $converter = 'newSViv' unless defined $converter;
  357.  
  358.         my $conversion;
  359.         if ($converter =~ m/\$var/) {
  360.             ($conversion = $converter) =~ s/\$var/$constant/;
  361.         } else {
  362.             $conversion = "$converter ($constant)";
  363.         }
  364.  
  365.         $boot_code .= <<"__EOD__";
  366.     newCONSTSUB (stash, "$constant", $conversion);
  367.     av_push (constants_av, newSVpv ("$constant", PL_na));
  368. __EOD__
  369.     }
  370.  
  371.     if (!@constants) {
  372.         $boot_code .= <<'__EOD__';
  373.         PERL_UNUSED_VAR (stash);
  374. __EOD__
  375.     }
  376.  
  377.     $boot_code .= <<"__EOD__";
  378.     hv_store (tags_hv, "$options{export_tag}", strlen ("$options{export_tag}"), constants_ref_sv, 0);
  379. }
  380. __EOD__
  381.  
  382.     open my $xs_fh, '>', $options{xs_file}
  383.         or croak "Unable to open `$options{xs_file}┬┤ for writing: $!";
  384.  
  385.     print $xs_fh <<"__EOD__";
  386. /**
  387.  * This is a generated file.  Do not edit.
  388.  */
  389.  
  390. #include "$options{header}"
  391.  
  392. MODULE = $options{prefix}::Constants    PACKAGE = $options{prefix}
  393.  
  394. BOOT:
  395. $boot_code
  396.  
  397. __EOD__
  398.  
  399.     close $xs_fh
  400.         or croak "Unable to close `$options{xs_file}┬┤: $!";
  401. }
  402.  
  403.  
  404. 1;
  405. __END__
  406.  
  407. =back
  408.  
  409. =head1 SEE ALSO
  410.  
  411. L<Glib::CodeGen> does the actual work; Gtk2::CodeGen is now just a wrapper
  412. which adds support for gtk-specific types.
  413.  
  414. =head1 AUTHOR
  415.  
  416. muppet <scott at asofyet dot org>
  417.  
  418. =head1 COPYRIGHT
  419.  
  420. Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for the
  421. full list)
  422.  
  423. This library is free software; you can redistribute it and/or modify it under
  424. the terms of the GNU Library General Public License as published by the Free
  425. Software Foundation; either version 2.1 of the License, or (at your option)
  426. any later version.
  427.  
  428. This library is distributed in the hope that it will be useful, but WITHOUT
  429. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  430. FOR A PARTICULAR PURPOSE.  See the GNU Library General Public License for
  431. more details.
  432.  
  433. You should have received a copy of the GNU Library General Public License
  434. along with this library; if not, write to the Free Software Foundation, Inc.,
  435. 59 Temple Place - Suite 330, Boston, MA  02111-1307  USA.
  436.  
  437. =cut
  438.